home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1998.rar / 1998 / May / di9805bt / copy / COPY.OUT < prev    next >
Text File  |  1994-12-17  |  485b  |  30 lines

  1. unit Filef;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, 
  7. Graphics, Controls,
  8.   Forms, Dialogs, FileCtrl, StdCtrls;
  9.  
  10. type
  11.   TForm1 = class(TForm)
  12.     FileListBox1: TFileListBox;
  13.     DirectoryListBox1: TDirectoryListBox;
  14.     DriveComboBox1: TDriveComboBox;
  15.     FilterComboBox1: TFilterComboBox;
  16.   private
  17.     { Private declarations }
  18.   public
  19.     { Public declarations }
  20.   end;
  21.  
  22. var
  23.   Form1: TForm1;
  24.  
  25. implementation
  26.  
  27. {$R *.DFM}
  28.  
  29. end.
  30.